home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Examples / AppKit / Draw / textUndo.subproj / WholeTextChange.h < prev    next >
Text File  |  1992-02-09  |  310b  |  17 lines

  1. /*
  2.  * This class is used to represent text changes which aren't restricted to
  3.  * the current selection. The entire contents of the text object are saved.
  4.  */
  5.  
  6. @interface WholeTextChange : TextSelChange
  7. {
  8. }
  9.  
  10. /* Public methods */
  11.  
  12. - saveBeforeChange;
  13. - saveAfterChange;
  14. - setStart:(int)start end:(int)end;
  15.  
  16. @end
  17.